我正在我的程序上设置一些跟踪代码,并想知道通过哪些方法定义attr_accessor
.使用TracePoint
,我可以检测何时attr_accessor
被调用,但我不知道如何让它告诉我它收到的论据.有任何想法吗?
在问题标题中,您要求提供变量列表,但这会回答问题正文,该正文要求提供已定义方法的列表.
此方法不会检查实例变量,如果您开始手动更新或创建其他实例变量,则会引入噪声.
module MethodTracer TracePoint.trace(:c_call) do |t| if (t.method_id == :attr_accessor) t.self.extend(MethodTracer) methods = t.self::Methods ||= [] MethodTracer.send(:define_method, :method_added) {|m| methods << m } end end TracePoint.trace(:c_return) do |t| if (t.method_id == :attr_accessor) MethodTracer.send(:remove_method, :method_added) end end end class Foo attr_accessor :a, :b attr_accessor :c def foo; end end Foo::Methods # => [:a, :a=, :b, :b=, :c, :c=]
我已将方法名称存储在Methods
常量中,但显然您可以将它们存储在最方便的地方.
定义/删除method_added
在MethodTracer
确保不影响任何Foo.method_added
你自己定义.但是,这种方法确实要求如果您Foo.method_added
在调用之前定义attr_accessor
,则需要在其中调用super
.否则你将跳过临时method_added
定义的MethodTracer
.